home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 25
/
Cream of the Crop 25.iso
/
program
/
tsetguid.zip
/
TEA
/
SET
/
SAMPLE
/
MCALDEMO.JAV
< prev
next >
Wrap
Text File
|
1997-02-27
|
1KB
|
47 lines
/*
* Copyright (c) 1996-1997, InetSoft Technology Corp, All Rights Reserved.
*
* The software and information contained herein are copyrighted and
* proprietary to InetSoft Technology Corp. This software is furnished
* pursuant to a written license agreement and may be used, copied,
* transmitted, and stored only in accordance with the terms of such
* license and with the inclusion of the above copyright notice. Please
* refer to the file "COPYRIGHT" for further copyright and licensing
* information. This software and information or any other copies
* thereof may not be provided or otherwise made available to any
* other person.
*/
package tea.set.sample;
import java.applet.*;
import java.awt.*;
import java.awt.event.*;
import tea.set.*;
/**
* This is a demo applet to show using tea.set.MonthCal.
*
* @see MCalendar
* @see Monthcal
* @version 1.3, 01/31/97
* @author InetSoft Technology Corp
*/
public class MCalDemo extends Applet {
public void init() {
setLayout(new BorderLayout());
final MonthCal cal = new MonthCal(96, 9);
cal.setNotes(14, "Teach Java class");
add("Center", new Effect3D(cal, Effect3D.RAISED_BORDER));
cal.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
int day = Integer.parseInt(e.getActionCommand());
System.out.println(cal.getNotes(day));
}
});
}
}